home *** CD-ROM | disk | FTP | other *** search
/ PC-SIG: World of Games / PC-SIG World of Games (CDRM1080710) (1993).iso / 1691 / MENU < prev    next >
Text File  |  1990-09-07  |  1KB  |  87 lines

  1. /*
  2.  * Sample menu planner script:
  3.  */
  4. meal!u: {$meat
  5. $starch
  6. $vegetable
  7. $salad
  8. }
  9. |{$meat
  10. $starch
  11. $vegetable
  12. $salad
  13. }
  14. |{$meat
  15. $starch
  16. $salad
  17. }
  18. |{$casserole
  19. $salad
  20. }
  21. |{$stirfry
  22. rice
  23. }
  24. |{pizza}
  25. |{take out chinese}
  26. ;
  27.  
  28. meat!u: {pot roast}
  29.     | {meat loaf}
  30.     | {fried chicken}
  31.     | {pork chops}
  32.     | {hamburgers}
  33.     | {beef bourgigneon}
  34.     | {baked fish}
  35.     | {baked chicken}
  36.     | {lamb chops}
  37.     | {shrimp}
  38.     | {fried clams}
  39.     ;
  40.  
  41. starch!u: {baked potatoes}
  42.       | {boiled potatoes}
  43.       | {mashed potatoes}
  44.       | {boiled rice}
  45.       | {fried rice}
  46.       | {$pasta}
  47.       | {fresh baked bread}
  48.       ;
  49.  
  50. vegetable!u: {corn}
  51.          | {peas}
  52.          | {green beans}
  53.          | {broccoli}
  54.          | {cauliflower}
  55.          | {carrots}
  56.          | {oriental vegetables}
  57.          | {boiled cabbage}
  58.          | {zucchini}
  59.          ;
  60.  
  61. salad!u: {green salad}
  62.      | {fruit salad}
  63.      | {waldorf salad}
  64.      | {jello salad}
  65.      | {cucumber salad}
  66.      | {three bean salad}
  67.      ;
  68.  
  69. stirfry!u: {stir fried chicken}
  70.        | {stir fried beef}
  71.        | {stir fried shrimp}
  72.        | {stir fried pork}
  73.        | {stir fried scallops}
  74.        ;
  75.  
  76. casserole!u: {macaroni and cheese}
  77.          | {tuna casserole}
  78.          ;
  79.  
  80. pasta!u: {spaghetti}
  81.        | {egg noodles}
  82.        | {bow tie noodles}
  83.        | {macaroni and cheese}
  84.        | {linguine}
  85.        | {fettucine}
  86.        ;
  87.